Skip to main content

Project Chats Batch Deletion Endpoint

Overview

This endpoint allows users to delete multiple chat conversations associated with a specific project.

Request Details

HTTP Method

DELETE

Route

/api/users/[user_id]/projects/[project_id]/chats

Route Parameters

ParameterTypeRequiredDescription
user_idintegerYesThe ID of the authenticated user
project_idintegerYesThe ID of the project

Headers

HeaderValueRequiredDescription
Acceptapplication/jsonYesSpecifies the response format
Content-Typeapplication/jsonYesRequest body format
Cookieneptun-sessionYesSession authentication cookie

Request Body

FieldTypeRequiredDescription
chat_idsnumber[]YesArray of chat IDs to delete

Response Format

Response Status Codes

Status CodeDescription
200Successfully deleted chats
400Bad Request (invalid request body)
401Unauthorized (invalid or missing session)
404Project not found
500Server error

Success Response (200 OK)

Returns true on successful deletion.

true

Error Response (400 Bad Request)

{
"statusCode": 400,
"statusMessage": "Bad Request",
"message": "Invalid body(chat_ids)"
}

TypeScript Interface

interface DeleteChatsRequest {
chat_ids: number[]
}

type ApiResponse = boolean

Python Model

from pydantic import BaseModel
from typing import List

class DeleteChatsRequest(BaseModel):
chat_ids: List[int]

class ApiResponse(BaseModel):
success: bool

Code Examples

cURL Example

curl -X DELETE "https://neptun-webui.vercel.app/api/users/1/projects/1/chats" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "Cookie: neptun-session=your-session-cookie" \
-d '{
"chat_ids": [1, 2, 3]
}'

Python Example

import httpx
from typing import List

async def delete_project_chats(
user_id: int,
project_id: int,
chat_ids: List[int],
session_cookie: str
) -> bool:
url = f"https://neptun-webui.vercel.app/api/users/{user_id}/projects/{project_id}/chats"

async with httpx.AsyncClient() as client:
response = await client.delete(
url,
json={"chat_ids": chat_ids},
headers={
"Accept": "application/json",
"Content-Type": "application/json",
"Cookie": f"neptun-session={session_cookie}"
}
)
response.raise_for_status()
return response.json()

TypeScript/JavaScript Example

async function deleteProjectChats(
userId: number,
projectId: number,
chatIds: number[],
sessionCookie: string
): Promise<boolean> {
const response = await fetch(
`https://neptun-webui.vercel.app/api/users/${userId}/projects/${projectId}/chats`,
{
method: 'DELETE',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
'Cookie': `neptun-session=${sessionCookie}`,
},
body: JSON.stringify({ chat_ids: chatIds }),
}
)

if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`)
}

return await response.json()
}

Notes

  • The session cookie is required for authentication
  • All chats must belong to the specified project
  • The operation will fail if any of the chats cannot be deleted
  • This operation cannot be undone
  • Both the project-chat links and the actual chat conversations will be deleted